Package pl. wendigo. chrome. api. profiler
Contains DevTools Protocol Profiler domain implementation accessible via ProfilerDomain class.
Types
ConsoleProfileFinishedEvent
Link copied to clipboard
ConsoleProfileStartedEvent
Link copied to clipboard
data class ConsoleProfileStartedEvent(id: String, location: Location, title: String?) : Event
Content copied to clipboard
CounterInfo
Link copied to clipboard
CoverageRange
Link copied to clipboard
FunctionCoverage
Link copied to clipboard
data class FunctionCoverage(functionName: String, ranges: List<CoverageRange>, isBlockCoverage: Boolean)
Content copied to clipboard
GetBestEffortCoverageResponse
Link copied to clipboard
GetCountersResponse
Link copied to clipboard
GetRuntimeCallStatsResponse
Link copied to clipboard
data class GetRuntimeCallStatsResponse(result: List<RuntimeCallCounterInfo>)
Content copied to clipboard
Represents response frame that is returned from Profiler#getRuntimeCallStats operation call.
PositionTickInfo
Link copied to clipboard
PreciseCoverageDeltaUpdateEvent
Link copied to clipboard
data class PreciseCoverageDeltaUpdateEvent(timestamp: Double, occassion: String, result: List<ScriptCoverage>) : Event
Content copied to clipboard
ProfileNode
Link copied to clipboard
data class ProfileNode(id: Int, callFrame: CallFrame, hitCount: Int?, children: List<Int>?, deoptReason: String?, positionTicks: List<PositionTickInfo>?)
Content copied to clipboard
ProfilerDomain
Link copied to clipboard
RuntimeCallCounterInfo
Link copied to clipboard
data class RuntimeCallCounterInfo(name: String, value: Double, time: Double)
Content copied to clipboard
ScriptCoverage
Link copied to clipboard
data class ScriptCoverage(scriptId: ScriptId, url: String, functions: List<FunctionCoverage>)
Content copied to clipboard
ScriptTypeProfile
Link copied to clipboard
data class ScriptTypeProfile(scriptId: ScriptId, url: String, entries: List<TypeProfileEntry>)
Content copied to clipboard
SetSamplingIntervalRequest
Link copied to clipboard
StartPreciseCoverageRequest
Link copied to clipboard
data class StartPreciseCoverageRequest(callCount: Boolean?, detailed: Boolean?, allowTriggeredUpdates: Boolean?)
Content copied to clipboard
Represents request frame that can be used with Profiler#startPreciseCoverage operation call.
StartPreciseCoverageResponse
Link copied to clipboard
StopResponse
Link copied to clipboard
TakePreciseCoverageResponse
Link copied to clipboard
data class TakePreciseCoverageResponse(result: List<ScriptCoverage>, timestamp: Double)
Content copied to clipboard
Represents response frame that is returned from Profiler#takePreciseCoverage operation call.
TakeTypeProfileResponse
Link copied to clipboard
TypeObject
Link copied to clipboard
TypeProfileEntry
Link copied to clipboard